home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 112 / EnigmaAmiga112CD.iso / dalla rivista / awnpipe / awnp / awnp-docs / checkbox.doc < prev    next >
Text File  |  2000-05-17  |  2KB  |  93 lines

  1. CheckBox gadget event
  2. -------------------------
  3.  
  4. 'gadget GID selected_state'
  5.  
  6.  
  7. CheckBox gadget parameters.
  8. -------------------------
  9.  
  10. font=GID
  11.  
  12. This sets the font for the gadget. The GID points to an ALREADY defined text attribute.
  13.  
  14. close (c)
  15.  
  16.  This gadget will close the window when selected by the user.
  17.  
  18. readonly (ro)
  19.  
  20.  This gadget is read only.
  21.  
  22. disable=number (dis=)
  23.  
  24.  The gadget is enabled if number = 0 , disabled if number != 0. Defaults to enabled.
  25.  
  26. selected=number (s=)
  27.  
  28.   The gadget is selected if number != 0 , unselected if number = 0. Defaults to unselected.
  29.  
  30. gadgettext="text" (gt=)
  31.  
  32.  Set the text of the gadget.
  33.  
  34. leftjustify (lj)
  35.  
  36.  Set the placement of the text for the gadget. Defaults to Rightjustify.
  37.  
  38. minwidth=number (minw=)
  39.  
  40.  Set the minimum width for this gadget
  41.  
  42. minheight=number (minh=)
  43.  
  44.  Set the minimum height for this gadget
  45.  
  46. weightedwidth=number (weiw=)
  47.  
  48.  Set the weighted width for this gadget
  49.  
  50. weightedheight=number (weih=)
  51.  
  52.  Set the weighted height for this gadget
  53.  
  54. nominalsize (noms)
  55.  
  56.  Set this gadget to its nominal size.
  57.  
  58. tags="tags|data[|tag|data...]|0
  59.  
  60.  A list of tag and value pairs in HEX. Do not forget the trailing null !
  61.  
  62. childlabel    (chl)
  63. childlabelr   (chlr)
  64.  
  65.  Use the previously defined image as a childlabel for this gadget. Display the childlabel to the right or left of the gadget.
  66.  
  67. replace=GID
  68.  
  69.  Use this gadget to replace an existing gadget specified by GID.
  70.  
  71. Definition Reply
  72. -----------------
  73.  
  74.  When the gadget creation is successful the pipe replies with
  75.  
  76. 'ok GID'
  77.  
  78. CheckBox gadget modify parameters.
  79. -------------------------
  80.  
  81. disable=number (dis=)
  82.  
  83.  The gadget is enabled if number = 0 , disabled if number != 0.
  84.  
  85. selected=number (s=)
  86.  
  87.   The gadget is selected if number != 0 , unselected if number = 0.
  88.  
  89. gadgettext="text" (gt=)
  90.  
  91.  Set the text of the gadget.
  92.  
  93.